From 376a1c3476e145a0494a49882557952529348313 Mon Sep 17 00:00:00 2001 From: Andrew Cooper Date: Thu, 25 Jan 2018 18:38:17 +0000 Subject: [PATCH] xen/build: Untangle CONFIG_DEBUG and CONFIG_FRAME_POINTER Both options are independently choseable in KConfig, but currently a DEBUG build without FRAME_POINTER is left to the compilers default choice, not the users choice. Signed-off-by: Andrew Cooper Reviewed-by: Jan Beulich --- xen/Rules.mk | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/xen/Rules.mk b/xen/Rules.mk index 3cf40754a6..541ed13aa1 100644 --- a/xen/Rules.mk +++ b/xen/Rules.mk @@ -43,7 +43,13 @@ ALL_OBJS-$(CONFIG_CRYPTO) += $(BASEDIR)/crypto/built_in.o ifeq ($(CONFIG_DEBUG),y) CFLAGS += -O1 else -CFLAGS += -O2 -fomit-frame-pointer +CFLAGS += -O2 +endif + +ifeq ($(CONFIG_FRAME_POINTER),y) +CFLAGS += -fno-omit-frame-pointer +else +CFLAGS += -fomit-frame-pointer endif CFLAGS += -nostdinc -fno-builtin -fno-common @@ -58,8 +64,6 @@ ifneq ($(clang),y) CFLAGS += -Wa,--strip-local-absolute endif -CFLAGS-$(CONFIG_FRAME_POINTER) += -fno-omit-frame-pointer - ifneq ($(max_phys_irqs),) CFLAGS-y += -DMAX_PHYS_IRQS=$(max_phys_irqs) endif -- 2.30.2